
*{margin: 0;
padding: 0;

}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
  }
  /* Apply initial styles for animation */
h1, p {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation-triggered styles */
h1[data-visible="true"], p[data-visible="true"] {
    opacity: 1;
    transform: translateY(0);
    animation: mindBlowing 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Keyframe for mind-blowing animation */
@keyframes mindBlowing {
    0% {
        opacity: 0;
        transform: rotateX(90deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: rotateX(-10deg) scale(1.1);
    }
    100% {
        transform: rotateX(0deg) scale(1);
    }
}


/* Navbar Customization */


.hero {
  position: relative;
  height: 100vh;
  background: url(images/stairs-6133971_1920.jpg) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.8),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Welcome Heading Animation */
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 20px;
  animation: bornAppear 2s ease-in-out forwards;
  opacity: 0;
  transform: scale(0.8);
  text-shadow: 
  -1px -1px 0 black,
  1px -1px 0 black,
 -1px  1px 0 black,
  1px  1px 0 black;
}

@keyframes bornAppear {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotating Services Styling */
#dynamic-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

/* Button Styling */
.cta-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  background: #ffc107;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.cta-button:hover {
  background: #e0a800;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  #dynamic-text {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 1rem;
  }
}

:root {
  --background-color: #111; /* Main background color */
  --primary-color: #ffc107; /* Primary color for icons */
  --hover-color: #fff; /* Hover color for icons */
}

/* Sliding Container */
.slider-container {
  position: relative;
  margin: auto;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(black, rgba(105, 104, 104, 0.818));
  padding: 10px 0;
}

.slider-track {
  display: flex;
  width: 200%; /* Double width for seamless loop */
  animation: slide 15s linear infinite; /* Continuous sliding animation */
}

.slider-item {
  flex: 0 0 auto;
  width: 20%;
  text-align: center;
  padding: 10px;
  color: var(--primary-color);
  font-size: 2.5rem;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.slider-item:hover {
  transform: scale(1.2);
  color: var(--hover-color);
}

/* Keyframes for Sliding Effect */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Slide by half width */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slider-item {
    font-size: 1.5rem;
    width: 30%;
  }
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section__heading {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section__heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #ffd700;
  margin-top: 10px;
  border-radius: 2px;
}

.about-section__text {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section__image {
  flex: 1;
  max-width: 500px;
  position: relative; /* Required for the overlay */
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section__image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 10px 13px -7px#FFD700, 19px 30px 19px -1px#FFD700;
  box-shadow: 0px 10px 13px -7px#FFD700, 19px 30px 19px -1px rgba(0, 0, 0, 0.69);
}

/* Golden Shade Overlay */
.about-section__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 border-radius: 15px;
  pointer-events: none; /* Allow clicks through the overlay */
}

.learn_button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  color: #000;
  background-color: #ffd700;
  text-transform: uppercase;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, padding 0.3s ease;
  position: relative;
}

.learn_button:hover {
  background-color: #e5c100;
  padding-right: 40px;
}

.learn_button:hover::after {
  content: "→";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-section__heading.visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-section__image img {
    max-width: 100%;
  }
}

/*  */

.dreams-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  border: 2px solid #ffc107;
  border-radius: 8px;
  margin: 50px auto;
  max-width: 1200px;
}
.dreams-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInDown 1s ease-in-out;
}
.dreams-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeIn 1.5s ease-in-out;
}
.dreams-section button {
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  background-color: #ffc107;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  animation: fadeInUp 2s ease-in-out;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dreams-section button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 255, 0, 0.4);
}
.row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
}
.overlay-card {
  position: relative;
  width: 400px;
  height: 300px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  background-color: #333; /* Fallback background color */
  border-radius: 100px;
}
.content h3 {
  font-size: 3em;
  margin: 0;
  animation: textFadeIn 1s ease forwards;
}
.content p {
  margin: 10px 0 5px;
  font-size: 1.2em;
  animation: textFadeIn 1.5s ease forwards;
}
.content small {
  font-size: 0.9em;
  animation: textFadeIn 2s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Gradient Shade Overlay */
.overlay-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    #ffc107c5,
    rgba(51, 51, 51, 0.6)
  ); /* Gradient overlay */
  z-index: 1;
  border-radius: 10px;
}

.overlay-card .content {
  position: relative;
  z-index: 2; /* Above the overlay */
  padding: 20px;
}

.overlay-card h3 {
  font-size: 2.5rem;
  margin: 0;
}

.overlay-card p {
  margin: 5px 0 0;
  font-size: 1rem;
}

.overlay-card small {
  font-size: 0.875rem;
  opacity: 0.8;
}
/* Scroll Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*  */

    /* Section Styling */
    .why-choose-us {
        padding: 100px 20px;
        text-align: center;
        position: relative;
      }

   .why-choose-us h1{
    font-size: 3rem;
    font-weight: bold;
   }
      /* Animations */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      @keyframes buttonGlow {
        0%, 100% {
          box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.6);
        }
        50% {
          box-shadow: 0px 0px 20px rgba(255, 215, 0, 1);
        }
      }
  
      @keyframes rotateAndZoom {
        0% {
          transform: scale(0.8) rotate(0deg);
        }
        50% {
          transform: scale(1.2) rotate(180deg);
        }
        100% {
          transform: scale(0.8) rotate(360deg);
        }
      }
  
      /* Section Title and Text */
      .why-choose-us h1 {
        font-size: 3rem;
        color: #ffc107;
        margin-bottom: 20px;
        text-transform: uppercase;
        opacity: 0;
        animation: fadeUp 1s forwards;
      }
  
      .why-choose-us p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 50px;
        color: #f5f5f5;
        opacity: 0;
        animation: fadeUp 1s 0.5s forwards;
      }
  
      /* Button */
  .why-choose-us .btn {
    padding: 15px 30px;
    background: linear-gradient(90deg, #ffc107 #ffcc00);
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    animation: fadeUp 1s 0.5s forwards; 
    overflow: hidden;
    
  }
 
  
  
  .why-choose-us .btn:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #ffcc00, #ffc107);
    box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.7);
  }
  
   
  
      /* Cards Section */
      .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 50px;
      }
  
      .card {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid transparent;
        border-radius: 10px;
        text-align: center;
        padding: 30px 20px;
        transition: all 0.3s ease-in-out;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
      }
  
      .card:hover {
        transform: translateY(-10px);
        border-color: #ffc107;
        box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
      }
  
      .card-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #ffc107;
      }
  
      .card h3 {
        font-size: 1.5rem;
        color: white;
        margin-bottom: 15px;
      }
  
      .card p {
        font-size: 1rem;
        color: #dcdcdc;
      }
  
      /* Scroll Trigger Animation */
      .card.scroll-animated {
        animation: fadeUp 0.8s ease-out forwards;
      }
  
      /* Responsive */
      @media (max-width: 768px) {
        .why-choose-us h1 {
          font-size: 2.5rem;
        }
  
        .why-choose-us p {
          font-size: 1rem;
        }
  
        .card {
          padding: 20px;
        }
      }
      /* Footer */
 
  
            /* Section Titles */
            .section-title {
                text-align: center;
                color: #FFC107;
                margin: 40px 0 20px;
                font-size: 3rem;
                font-weight: bold;
              }
            
              /* Services Section */
              .services {
                background: #111;
                color: #fff;
                padding: 40px 20px;
              }
            
              .service-item {
                text-align: center;
                padding: 20px;
                border: 1px solid #333;
                border-radius: 10px;
                transition: transform 0.3s ease, border-color 0.3s ease;
                color: #FFC107;
                font-size: xx-large;
              }
              .service-item p{
                color: #fff;
              }
              .service-item:hover {
                transform: scale(1.05);
                border-color: #FFC107;
              }
             
                   /* General Reset */
      

        /* Expertise Section */
        .expertise-section {
            text-align: center;
            padding: 40px 20px;
            background: #f9f9f9;
        }

        .expertise-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .expertise-section p {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Call-to-Action Section */
        .cta-section {
            position: relative;
            text-align: center;
            color: white;
            padding: 100px 20px;
            background: url(images/teamwork-3213924_1280.jpg) center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Dark Overlay */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
            z-index: 1;
        }

        .cta-section h3,
        .cta-section h1,
        .cta-button {
            position: relative;
            z-index: 2;
        }

        /* Floating Animation */
        .cta-section h3 {
            font-size: 3.2rem;
            font-style: italic;
            color: #FFD700;
            margin-bottom: 10px;
            animation: float 3s ease-in-out infinite;
        }

        .cta-section h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
        }

        /* Button Animation */
        .cta-section .cta-button {
            display: inline-block;
            padding: 15px 30px;
            color: white;
            border: 2px solid white;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: scale 3s ease-in-out infinite;
        }

        .cta-section .cta-button:hover {
            background: white;
            color: #111;
            border-color: #FFD700;
        }

        /* Keyframes for Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Keyframes for Button Scaling */
        @keyframes scale {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cta-section h1 {
                font-size: 2.5rem;
            }

            .cta-section .cta-button {
                font-size: 0.9rem;
                padding: 10px 20px;
            }
        }
           
        /* Section Styling */
        .maintenance-section {
            position: relative;
            padding: 60px 20px;
            background: #111; /* Dark Gray Background */
            text-align: center;
        }

        .maintenance-section h2 {
            font-size: 2.5rem;
            color: #ffc107;
            margin-bottom: 20px;
        }

        .maintenance-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .maintenance-item {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background: #222;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2); /* Golden Shadow */
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
            border: 1px solid#ffc107; /* Golden Border */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .maintenance-item.show {
            opacity: 1;
            transform: translateY(0);
        }

        .maintenance-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4); /* Enhanced Hover Effect */
        }

        .maintenance-item i {
            font-size: 2rem;
            color: #ffc107;
        }

        .maintenance-item h3 {
            font-size: 1.2rem;
            margin: 0;
            color: #fff;
        }

        .maintenance-item p {
            font-size: 0.9rem;
            margin: 5px 0 15px;
            color: #bbb;
        }

        /* Button Styling */
        .maintenance-button {
            padding: 10px 20px;
            background: #ffc107;
            color: #111;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .maintenance-button:hover {
            background: #ffd700; /* Slightly brighter gold */
            transform: translateY(-3px);
        }

        /* Background Image Styling */
        .background-image {
            position: absolute;
            top: 0;
            right: 10%;
            width: 350px;
            height: auto;
            z-index: 1;
            opacity: 0.15;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .maintenance-content {
                flex-direction: column;
            }

            .background-image {
                top: 50px;
                right: 0;
                width: 250px;
                opacity: 0.2;
            }
        }
      
          .sliding-message {
            position: fixed;
            top: 50%;
            right: -350px; /* Start off-screen */
            transform: translateY(-50%);
            width: 320px;
            background-color: #1e1e1e;
            border: 2px solid gold;
            box-shadow: 0px 4px 20px rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            padding: 20px;
            transition: right 0.7s ease-in-out, opacity 0.5s ease-in-out;
            opacity: 0;
            z-index: 9999;
        }
      
        .sliding-message.active {
            right: 50px; /* Slide into view */
            opacity: 1;
        }

       
        .sliding-message h3 {
            font-size: 18px;
            color: gold;
            margin-bottom: 10px;
            text-align: center;
        }
      
        .sliding-message p {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 20px;
            text-align: center;
        }
      
        .sliding-message .cta-button {
            display: block;
            width: 100%;
            padding: 10px 0;
            text-align: center;
            background-color: gold;
            color: #121212;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
        }
      
        .sliding-message .cta-button:hover {
            background-color: #ffd700;
        }
      
        .sliding-message .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            color: gold;
            font-size: 18px;
            cursor: pointer;
        }
      
        .reopen-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: gold;
            color: #121212;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.3);
            font-size: 20px;
            display: none; /* Initially hidden */
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999;
            transition: transform 0.3s ease-in-out;
        }
      
        .reopen-btn:hover {
            transform: scale(1.1);
        }
      
        .reopen-btn i {
            font-size: 24px;
            color: #121212;
        }
      /* Custom styles for the close button */
.custom-close-btn {
    background-color: gold; /* Change button background color */
    border-radius: 50%;    /* Optional: make it circular */
    width: 30px;           /* Adjust size */
    height: 30px;          /* Adjust size */
    border: 2px solid gold; /* Add a gold border */
}

.custom-close-btn:hover {
    background-color: #ffd700; /* Lighter gold on hover */
}

.custom-close-btn::before {
    color: #121212;        /* Change cross (×) color */
    font-size: 16px;       /* Adjust cross size */
}
/* Reusable SVG Background */
.section-with-svg {
    position: relative;
    padding: 50px; /* Adjust as needed */
    /* background: #1a1a1a; Section background color */
    color: #FFD700; /* Text color */
    border-radius: 10px; /* Optional: rounded corners */
    overflow-x: hidden; /* Keep SVG within the section */
    z-index: 1;
    
}

.section-with-svg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place behind the content */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="45" fill="none" stroke="%23FFD700" stroke-width="2"/><line x1="10" y1="10" x2="90" y2="90" stroke="%23FFD700" stroke-width="1"/><line x1="90" y1="10" x2="10" y2="90" stroke="%23FFD700" stroke-width="1"/></svg>') no-repeat center;
    background-size: cover; /* Ensure it scales to fit the section */
    opacity: 0.1; /* Subtle visibility */
    
}

